home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Internet & Communication / WordPress 1.5.1.dmg / wordpress / wp-config-sample.php < prev    next >
Encoding:
PHP Script  |  2005-02-21  |  840 b   |  21 lines

  1. <?php
  2. // ** MySQL settings ** //
  3. define('DB_NAME', 'wordpress');     // The name of the database
  4. define('DB_USER', 'username');     // Your MySQL username
  5. define('DB_PASSWORD', 'password'); // ...and password
  6. define('DB_HOST', 'localhost');     // 99% chance you won't need to change this value
  7.  
  8. // Change the prefix if you want to have multiple blogs in a single database.
  9. $table_prefix  = 'wp_';   // example: 'wp_' or 'b2' or 'mylogin_'
  10.  
  11. // Change this to localize WordPress.  A corresponding MO file for the
  12. // chosen language must be installed to wp-includes/languages.
  13. // For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
  14. // to enable German language support.
  15. define ('WPLANG', '');
  16.  
  17. /* Stop editing */
  18.  
  19. define('ABSPATH', dirname(__FILE__).'/');
  20. require_once(ABSPATH.'wp-settings.php');
  21. ?>